body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    background-color: #191715;
  }
 /* Fullscreen video wrapper */
 .video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Fullscreen video styling */
.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
 /* Overlay logo */
 .video-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 200px;
}
.content {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.section-below-video {
  margin-top:  15vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  color: #fff;
  text-align: center;
  padding: 20px;
}
.section-below-video h1 {
  font-family: 'Crimson Text', serif;
  font-size: 35px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-below-video h2 {
  font-family: 'Crimson Text', serif;
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.section-below-video p{
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 200;
}
.section-below-video a {
  font-family: 'Forum', cursive;  font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
}

.section-below-video a:hover {
  color: #CEAA7C;
  border-bottom: 1px solid #CEAA7C;
}

@media screen and (max-width: 1024px) {
  .section-below-video h1 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
  }
  .section-below-video h2 {
    font-size: 28px;
  }
  .section-below-video p{
    
    font-size: 18px;
    font-weight: 100;
  }
  .section-below-video a {
    font-family: 'Forum', cursive;    font-size: 16px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    border-bottom: 1px solid #fff;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
  }
  
  .section-below-video a:hover {
    color: #CEAA7C;
    border-bottom: 1px solid #CEAA7C;
  }
}

@media screen and (max-width: 768px) {
  .section-below-video h1 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .section-below-video h2 {
    font-size: 28px;
  }
  .section-below-video a {
    font-family: 'Forum', cursive;    
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    border-bottom: 1px solid #fff;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
  }
  
  .section-below-video a:hover {
    color: #CEAA7C;
    border-bottom: 1px solid #CEAA7C;
    text-transform: uppercase;
  }
}

@media screen and (max-width: 640px) {
  .section-below-video h1 {
    font-family: 'Crimson Text', serif;
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .section-below-video a {
    font-family: 'Forum', cursive;   font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    border-bottom: 1px solid #fff;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
  }
  
  .section-below-video a:hover {
    color: #CEAA7C;
    border-bottom: 1px solid #CEAA7C;
    text-transform: uppercase;
  }
}

/* Carousel */
.carousel-container {
  position: relative;
}
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding: 20px;
  
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari, and Edge */
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}
.carousel-item {
  flex: 0 0 calc(33.33% - 10px);
  scroll-snap-align: start;
  text-align: center;
  color: #fff;
  font-family: 'Forum', cursive;
}

.carousel-item img {
  width: 100%;
  height: auto;
  
}

.carousel-item h3 {
  margin-top: 10px;
  font-size: 30px;
  font-family: 'Forum', cursive;  font-weight: 100;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(50% - 10px); /* Two items visible on tablet */
  }
  .carousel-item h3 {
    margin-top: 10px;
    font-size: 23px;
    font-family: 'Forum', cursive; font-weight: 100;
    text-transform: uppercase;
  }
}

@media screen and (max-width: 768px) {
  .carousel-item {
    flex: 0 0 calc(50% - 10px); /* Center one item with half items visible on mobile */
  }
  .carousel-item h3 {
    margin-top: 10px;
    font-size: 15px;
    font-family: 'Forum', cursive;  font-weight: 100;
    text-transform: uppercase;
  }
  
}
  /* Header styling */
  h1 {
    font-family: 'Crimson Text', serif;
    font-size: 60px;
    font-weight: 100;
  }

  /* Subheader styling */
  h2 {
    font-family: 'Forum', cursive;
    font-size: 35px;
  }

  /* Body text styling */
  p {
    font-family: 'Work Sans', sans-serif;
    font-size: 23px;
    font-weight: 100;
  }

  a {
    font-family: 'Work Sans', sans-serif;
    font-size: 23px;
    font-weight: 100;
  }
  /* Responsive styles */
  @media screen and (max-width: 1024px) {
    h1 {
      font-size: 45px;
    }
    h2 {
      font-size: 28px;
    }
    p {
      font-size: 18px;
    }
    a {
      font-size: 18px;
    }
  }

  @media screen and (max-width: 768px) {
    h1 {
      font-size: 40px;
    }
  }

/* Navbar container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Left container: Logo and links */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

/* Logo */
.navbar-logo img {
  height: 40px;
  width: 40px;
}
.navbar-menu img {
  height: 40px;
  width: 40px;
}

.navbar-menu {
  display: none;
}


/* Navbar links */
.navbar-links {
  display: flex;
  gap: 20px;
  flex-grow: 1;
}

.navbar-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #CEAA7C;
}

/* Book Now button */
.navbar-button {
  background-color: #ceaa7c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Crimson Text', serif;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar-button:hover {
  background-color: #ffcc99;
  transform: scale(1.05);
}

/* Hamburger menu */
  .hamburger {
    display: none;
    font-size: 25px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding-left: 10px;
  }
/* Collapsed menu */
.navbar-links.collapsed {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 100%; /* Aligns perfectly below the navbar */
  left: 0;
  width: 100%; /* Match the navbar width */
  max-width: 80vw; /* Ensure it does not exceed navbar width */
  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
  z-index: 999;
}

.navbar-links.collapsed a {
  padding: 10px 0;
  text-align: left;
  color: white;
  display: block;
}

.navbar-links.collapsed a:hover {
  color: #CEAA7C;
}
.lswitch {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}
.lswitch a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}
/* Responsive styles */
@media screen and (max-width: 1024px) {
  .navbar-links {
    display: none;
  }
  .navbar-menu {
    display: block;
  }
  .hamburger {
    display: block;
  }

  .navbar {
    flex-direction: row;
  }
  .navbar-logo img {
    height: 40px;
    width: 40px;
  }
  .lswitch {
    display: none;
  }
}

/* Footer styles */
.footer {
  background-color: #191715; /* Dark background */
  color: white;
  padding: 40px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Left Section: The Hotel & More */
.footer-left {
  display: flex;
  flex-direction: row;
  width: 30%;
  min-width: 250px;
  gap: 40px;
}

/* Right Section: Newsletter */
.footer-right {
  flex: 1; /* Takes remaining space */
  max-width: 400px;
}

.footer h2 {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
}

/* Footer Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  font-family: 'Work Sans', sans-serif;
}

.footer ul li a:hover {
  color: #CEAA7C;
}

/* Newsletter Form */
.footer form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer input {
  padding: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: white;
  background-color: transparent;
  border: 1px solid white;

}

.footer button {
  text-transform: uppercase;
  padding: 10px;
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  background-color: #d3a676;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer button:hover {
  background-color: #ffcc99;
}

/* Footer Bottom */
.footer-line {
  border: 0;
  border-top: 1px solid #555;
  margin-top: 30px;
}

.footer-bottom {
  text-align: center;
  font-family: 'Work Sans', serif;
  font-weight: 300;
  font-size: 14px;
  color: #f5f5f5;
  margin-top: 20px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  margin: 0 10px;
  font-size: 14px;
}

.footer-bottom a:hover {
  color: #CEAA7C;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: left;
      align-items: left;
  }

  .footer-left {
      flex-direction: column;
      width: 100%;
      gap: 20px;
      text-align: left;
  }

  .footer-right {
      margin-top: 10vh;
      width: 100%;
      max-width: 100%;
      text-align: left;
  }

  .footer-bottom {
      font-size: 12px;
  }
}
  .banner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }


/* Spa Section Styling */
.spa-section {
  display: flex;
  align-items: stretch; /* Makes child elements the same height */
  justify-content: center;
  padding-bottom: 0px;
  padding-left: 40px;
  padding-right: 40px;
   /* Changed background color to black */
}

.spa-image {
  flex: 1;
  max-width: 50%;
  display: flex;
}

.spa-image img {
  width: 100%;
  height: 100%; /* Ensures the image takes the full height */
  object-fit: cover; /* Ensures the image covers the area without distortion */
}

.spa-content {
  font-family: 'Work Sans', serif;
  flex: 1;
  max-width: 50%;
  background-color: #fff; /* Background changed to white */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers text vertically */
  padding: 30px;
  min-height: 100%; /* Ensures content stretches */
}

.spa-content p {
  font-weight: 300;
  font-size: 16px;
}

.spa-content a {
  font-family: 'Crimson Text', serif;
  font-weight: 300;
  color: #000;
}

/* Responsive Design */

@media screen and (max-width: 1024px) {
  .spa-section {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .spa-image {
    max-width: 100%;
    height: 50vh; /* Ensures a fixed height for balance */
  }

  .spa-content {
    max-width: 100%;
    min-height: 50vh; /* Matches image height */
  }

  .spa-content p {
    font-weight: 300;
    font-size: 22px;
  }
  
  .spa-content h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .spa-section {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20x;
    
  }

  .spa-image {
    max-width: 100%;
    height: 50vh; /* Ensures a fixed height for balance */
  }

  .spa-content {
    max-width: 100%;
    min-height: 50vh; /* Matches image height */
  }
  .spa-content p {
    font-weight: 300;
    font-size: 10px;
  }
  .spa-content h2 {
    font-size: 26px;
  }
}

/* Default: Desktop view */
.responsive-image-banner {
    width: 80vw;
    
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 15vh auto 0;

   
  }
  
  /* Image styling */
  .responsive-image-banner img {
    width: 100%;
    max-height: 350px;
    object-fit: cover; /* Ensures the image fills the div while cropping */
    object-position: center; /* Centers the crop */
  }
  
  /* Tablet view: Crop to make image more squarish */

  
  /* Mobile view: Crop to a taller vertical frame */
  @media screen and (max-width: 576px) {

    .responsive-image-banner img {
      object-position: center; /* Adjust the focus area */
    }
  }
  
.faq-section {
  text-align: center;
  margin: 5rem auto; /* Space above/below; adjust as needed */
}

/* FAQ text styling */
.faq-section p {
  font-family: 'Work Sans', serif;
  font-weight: 300;
  font-size: 23px;
  margin-bottom: 2rem;
  letter-spacing: 0.025em; /* Slight spacing, optional */
  color: white;
}

/* Underline link for FAQ */
.faq-section a {
  font-family: 'Work Sans', serif;
  color: #f5f5f5;
  font-weight: 300;
  font-size: 23px;
  text-decoration: underline;
  
}

/* Icon/logo styling */
.faq-section img {
  width: 50px; /* Adjust to suit */
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Styling for the grid container */
.image-grid {
  display: flex;
  justify-content: space-between; /* Ensures even spacing */
  align-items: center;
  width: 90vw;
  margin: 0 auto 15vh;
  padding: 20px;
}

/* Individual image container */
.image-item {
  flex: 1; /* Equal width for all images */
  text-align: center;
  margin: 0 10px; /* Adds spacing between images */
}

/* Styling for images */
.image-item img {
  width: 100%; /* Makes images scale responsively */
  height: auto; /* Maintains aspect ratio */
  display: block;
   /* Matches the black borders */
}

/* Styling for text */
.image-item p {
  color: white;
  font-size: 23px;
  margin-top: 10px;
  font-family: "Forum", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .image-grid {
    flex-direction: column; /* Stacks images vertically */
    align-items: center;
    width: 100%;
    margin: 0 auto 0;
    padding: 0px;
  }

  .image-item {
    width: 90%; /* Adjusts width for better spacing */
    margin-bottom: 20px; /* Adds space between stacked images */
  }
}
/* Media Query: Stack items on smaller screens */
@media screen and (max-width: 768px) {
  .image-grid {
    flex-direction: column; /* Stacks images vertically */
    align-items: center;
  }

  .image-item {
    width: 90%; /* Adjusts width for better spacing */
    margin-bottom: 20px; /* Adds space between stacked images */
  }
}